home *** CD-ROM | disk | FTP | other *** search
- global gMasterData, checkMarks2, balloonSprite
-
- on bigButtons thisSprite
- leavePart2()
- case thisSprite of
- 3:
- goRace()
- 4:
- goSelf()
- 5:
- goNonPro()
- 6:
- goRoles()
- 7:
- stagesIntro()
- 8:
- goPlot()
- 9:
- goPaper()
- end case
- end
-
- on firstPart2
- goNarrator(gMasterData, "22")
- go(label("part2") - 1)
- setFingerCursor(#on, [3, 4, 5, 6, 7, 8, 9])
- setCheckMarks()
- puppetSprite(balloonSprite, 1)
- end
-
- on setUpPart2
- setUserArea(gMasterData, #subMenu)
- go(label("part2"))
- setFingerCursor(#on, [3, 4, 5, 6, 7, 8, 9])
- setCheckMarks()
- puppetSprite(balloonSprite, 1)
- bkgrdMusic(gMasterData)
- end
-
- on leavePart2
- stopSound2()
- setFingerCursor(#off, [3, 4, 5, 6, 7, 8, 9])
- setPuppetState([15, 21], #c, 0)
- puppetSprite(balloonSprite, 0)
- set the timeoutScript to EMPTY
- end
-
- on setCheckMarks
- setPuppetState([15, 21], #c, 1)
- set Xart to 15
- set checkpoints to [point(609, 40), point(609, 100), point(609, 160), point(609, 220), point(609, 280), point(609, 340), point(609, 400)]
- repeat with X = 1 to count(checkMarks2)
- if getAt(checkMarks2, X) = 1 then
- set the loc of sprite Xart to getAt(checkpoints, X)
- else
- set the loc of sprite Xart to point(-1000, -1000)
- end if
- set Xart to Xart + 1
- end repeat
- updateStage()
- promptToGoOn()
- end
-
- on promptToGoOn
- set vTally to 0
- set vCount to count(checkMarks2)
- repeat with vProp = 1 to vCount
- if getAt(checkMarks2, vProp) = 1 then
- set vTally to vTally + 1
- end if
- end repeat
- if vTally > 0 then
- activate(gMasterData)
- end if
- if vTally = vCount then
- set the timeoutLength to 20 * 60
- set the timeoutScript to "clickDummy"
- end if
- end
-
- on clickDummy
- puppetSound("gobkmain.aif")
- end
-